Show the code
::opts_chunk$set(echo = TRUE, message = FALSE, warning = FALSE)
knitrlibrary(tidyverse)
library(caret)
library(fastDummies)
= read_rds("/Users/Shared/Data 505/wine.rds") wine
In this analysis, we will generate a comprehensive set of 10 features derived from the wine dataset, which includes the points feature. Through the process of feature engineering, we will select and transform variables to create meaningful features that enhance the predictive power of our model. This involves consolidating similar categories using functions like fct_lump and ensuring that our dataset is clean by removing any rows with missing values. Additionally, we will transform the price variable into its logarithmic form (log(price)) to stabilize the variance and normalize the distribution, facilitating a more effective linear regression model.
Summary
In this section, we will create a total of 10 features, including the points feature, from the wine dataset. We will also remove all rows that contain any missing values to ensure the data is clean and complete. Finally, we will transform the price into its logarithmic form and ensure that only the log-transformed price (log(price)) and the selected features remain in the final dataframe, which we will call wino.
wino <- wine %>%
mutate(lprice = log(price)) %>%
mutate(country = fct_lump(country, 5),
taster_name = fct_lump(taster_name, 5),
variety = fct_lump(variety, 5),
winery = fct_lump(winery, 5),
region_1 = fct_lump(region_1, 5),
province = fct_lump(province, 5),
designation = fct_lump(designation, 5)) %>%
select(lprice, points, country, taster_name, variety, winery, region_1, province, designation) %>%
drop_na()
Summary
This section focuses on using the Caret library to partition the wino dataframe into an 80% training set and a 20% test set. We will perform a linear regression with bootstrap resampling and report the Root Mean Squared Error (RMSE) for the model on the test set. The bootstrap method involves resampling with replacement, which helps in estimating the accuracy of the model.
RMSE Rsquared MAE Resample
1 0.4716720 0.4639796 0.3669938 Resample1
2 0.4735139 0.4531511 0.3691902 Resample2
3 0.4682085 0.4532082 0.3652813 Resample3
4 0.4724564 0.4578321 0.3690610 Resample4
5 0.4718331 0.4647390 0.3683953 Resample5
RMSE Rsquared MAE
0.4716279 0.4453607 0.3677621
Summary
In this section, we will identify and visualize the importance of the selected features in our model. The goal is to understand which features have the most significant impact on predicting the log-transformed price of the wine.
Summary
To ensure reproducibility, we will set the seed to 504 before partitioning the data into training and test sets. We will aim to achieve an RMSE on the test data of less than 0.47 for 1 point, less than 0.46 for 2 points, or less than 0.45 for 3 points. This ensures that the model’s performance is both robust and reproducible.
This presentation demonstrated the process of feature engineering, model training using the Caret library, and evaluating the model’s performance. Key steps included creating features, handling missing data, partitioning the dataset, and assessing the model using RMSE. The importance of reproducibility in data partitioning and model evaluation was emphasized through the use of set.seed.